       /* Global Styles */
       * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }
    
    body {
        line-height: 1.6;
        color: #333;
        background-color: #f9f9f9;
    }
    
    
    .top-links {
        background-color: #f0f0f0;
        padding: 5px 20px;
        text-align: right;
    }

    .top-links a {
        color: #007bff;
        text-decoration: none;
        margin: 0 10px;
    }

    .headerr {
        background-color: white;
        padding: 5px 10px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        position: sticky;
        top: 0;
        z-index: 100; /* Ensure it's above other content */
    }
.logo{
    margin-right: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
}
.logo h3{
    margin-right: 20px;

    color: #0047AB;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}
    .logo img {
        width: 50px;
        height: 50px ;
        margin-right: 20px;
    }

    .nav-links {
        display: flex;
        align-items: center;
    }

    .nav-links a, .nav-links .dropdown-btn {
        color: #0047AB;
        text-decoration: none;
        padding: 10px 15px;
        margin: 0 5px;
        cursor: pointer;
        border: none;
        background: none;
    }

    .nav-links .dropdown {
        position: relative;
    }

    .nav-links .dropdown-content {
        display: none;
        position: absolute;
        background-color: white;
        min-width: 160px;
        box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
        z-index: 1;
        border-radius: 4px;
    }

    .nav-links .dropdown-content a {
        
        color: #0047AB;
        padding: 12px 16px;
        text-decoration: none;
        display: block;
    }
    .nav-links a:hover{
        background-color: #0047AB;
        color: white;
        padding: 10px 16px;
    }

    .nav-links .dropdown.show .dropdown-content {
        display: block;
    }

     

    .search-container {
        display: flex;
        align-items: center;
    }

    .search-container input[type="text"] {
        padding: 8px;
        border: 1px solid #ddd;
        border-radius: 4px;
        margin-right: 5px;
    }

    .search-container button {
        background-color: #007bff;
        color: white;
        padding: 8px 12px;
        border: none;
        border-radius: 50%;
        cursor: pointer;
    }

    .menu-icon {
        display: none;
        cursor: pointer;
        font-size: 1.5em;
        color: #333;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
        .nav-links {
            display: none;
        }

        .nav-links.responsive {
            display: block;
            position: absolute;
            top: 60px;
            left: 0;
            width: 100%;
            background-color: white;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        .nav-links.responsive a, .nav-links.responsive .dropdown-btn {
            display: block;
            text-align: left;
            padding: 12px 16px;
        }

        .nav-links.responsive .dropdown-content {
            position: static;
            box-shadow: none;
            min-width: auto;
        }

        .nav-links.responsive .dropdown-content a {
            padding-left: 25px;
        }

        .headerr {
            flex-wrap: wrap;
        }

        .logo {
            flex: 1 1 100%;
            text-align: center;
        }

        .search-container {
             display: none;
        }

        .top-links {
            text-align: center;
        }

        .menu-icon {
            display: block;
            position: absolute;
            top: 15px;
            right: 20px;
            margin-bottom: 20px;
            color: #0047AB;
        }

        .logo h3{
            margin-right: 50px;
            color: #0047AB;
            font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
        }
            .logo img {
                width: 50px;
                height: 50px ;
                margin-right: 20px;
            }
        
    }


    .container {
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }
    
    .section-title {
        text-align: center;
        margin-bottom: 50px;
    }
    
    .section-title h2 {
        font-size: 2.5rem;
        color: #0047AB;
        position: relative;
        display: inline-block;
        padding-bottom: 15px;
    }
    
    .section-title h2::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 3px;
        background-color: #0047AB;
    }
    
    /* Header Section */
    .contact-header {
        background: linear-gradient(rgba(0, 71, 171, 0.8), rgba(0, 71, 171, 0.8)), 
        url(images/13.jpg);
        background-size: cover;
        background-position: center;
        color: white;
        text-align: center;
        padding: 100px 20px;
    }
    
    .contact-header h1 {
        font-size: 3rem;
        margin-bottom: 20px;
    }
    
    .contact-header p {
        font-size: 1.2rem;
        max-width: 700px;
        margin: 0 auto;
    }
    
    /* Contact Info Section */
    
    
    .info-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 30px;
    }
    
    .info-card {
        flex: 1;
        min-width: 250px;
        text-align: center;
        padding: 40px 20px;
        border-radius: 8px;
        background-color: #f5f5f5;
        transition: all 0.3s ease;
    }
    
    .info-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 71, 171, 0.1);
    }
    
    .info-icon {
        font-size: 2.5rem;
        color: #0047AB;
        margin-bottom: 20px;
    }
    
    .info-card h3 {
        font-size: 1.5rem;
        margin-bottom: 15px;
        color: #0047AB;
    }
    
    .info-card p {
        color: #555;
        margin-bottom: 10px;
    }
    
    /* Contact Form Section */
    .contact-form {
        padding: 80px 0;
        background-color: #f9f9f9;
    }
    
    .form-container {
        max-width: 800px;
        margin: 0 auto;
        background: white;
        padding: 40px;
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }
    
    .form-group {
        margin-bottom: 25px;
    }
    
    .form-group label {
        display: block;
        margin-bottom: 8px;
        font-weight: 600;
        color: #444;
    }
    
    .form-control {
        width: 100%;
        padding: 12px 15px;
        border: 1px solid #ddd;
        border-radius: 4px;
        font-size: 1rem;
        transition: border 0.3s ease;
    }
    
    .form-control:focus {
        border-color: #0047AB;
        outline: none;
    }
    
    textarea.form-control {
        min-height: 150px;
        resize: vertical;
    }
    
    .submit-btn {
        background-color: #0047AB;
        color: white;
        border: none;
        padding: 12px 30px;
        font-size: 1rem;
        border-radius: 4px;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }
    
    .submit-btn:hover {
        background-color: #003580;
    }
    
    /* Map Section */
    .map-section {
        padding: 0 0 80px;
    }
    
    .map-container {
        height: 400px;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .map-container iframe {
        width: 100%;
        height: 100%;
        border: none;
    }
    
    /* Responsive Styles */
    @media (max-width: 768px) {
        .contact-header {
            padding: 80px 20px;
        }
        
        .contact-header h1 {
            font-size: 2.2rem;
        }
        
        .section-title h2 {
            font-size: 2rem;
        }
        
        .info-card {
            min-width: 100%;
        }
        
        .form-container {
            padding: 30px 20px;
        }
    }

    :root {
        --primary-color: #01193a;
        --secondary-color: #ffffff;
        --accent-color: #f8f9fa;
    }
    
    
    .footer-container {
        background-color: var(--primary-color);
        color: var(--secondary-color);
        padding: 40px 20px;
    }
    
    .footer-content {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
    }
    
    .footer-logo {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .logo-container {
        display: flex;
        align-items: center;
        margin-bottom: 20px;
    }
    
    .logo-circle {
        width: 50px;
        height: 50px;
        background-color: var(--secondary-color);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 15px;
    }
    
    .logo-circle span {
        color: var(--primary-color);
        font-weight: bold;
        font-size: 20px;
    }
    
    .logo-text {
        font-size: 24px;
        font-weight: 700;
    }
    
    .tagline {
        font-style: italic;
        margin-top: 10px;
        opacity: 0.9;
    }
    
    .footer-section h3 {
        font-size: 18px;
        margin-bottom: 20px;
        position: relative;
        padding-bottom: 10px;
    }
    
    .footer-section h3::after {
       
        position: absolute;
        left: 0;
        bottom: 0;
        width: 50px;
        height: 2px;
        background-color: var(--secondary-color);
    }
    
    .contact-info {
        list-style: none;
    }
    
    .contact-info li {
        margin-bottom: 15px;
        display: flex;
        align-items: flex-start;
    }
    
    .contact-info i {
        margin-right: 10px;
        margin-top: 3px;
    }
    
    .quick-links {
        list-style: none;
    }
    
    .quick-links li {
        margin-bottom: 12px;
    }
    
    .quick-links a {
        color: var(--secondary-color);
        text-decoration: none;
        transition: all 0.3s ease;
    }
    
    .quick-links a:hover {
        padding-left: 5px;
        opacity: 0.8;
    }
    
    .footer-bottom {
        max-width: 1200px;
        margin: 30px auto 0;
        padding-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        text-align: center;
        font-size: 14px;
        opacity: 0.8;
    }
    
    @media (max-width: 768px) {
        .footer-content {
            grid-template-columns: 1fr;
        }
        
        .footer-section {
            margin-bottom: 30px;
        }
    }